/* Banner padrão para páginas de dicas */
.banner {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax aqui */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
}

.banner-dica {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* escurece o fundo */
  z-index: 1;
}

.conteudo-banner {
  position: relative;
  z-index: 2; 
}

.logo-fake {
  font-size: 10rem;
  font-weight: bold;
  color: #ffff;
  text-shadow: 0 0 10px #ffffff;
}
.banner-title {
  font-size: 3rem;
  font-family: 'Title', Arial, sans-serif;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.banner-subtitle {
  font-size: 1.4rem;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}


/* Seção de conteúdo */
.section-dica {
  text-align: center;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-dica {
  font-size: 4rem;
  color: black;
  display: none;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);

}

.subtitle-dica {
  font-size: 2.5rem;
  margin-bottom: 20px;
  width: 80%;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.text-dica {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 20px;
  width: 90%;
}

/* Lista estilizada */
.styled-list-dica {
  list-style: disc;
  padding-left: 0;
}

.styled-list-dica li {
  position: relative;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1.5rem;
  text-align: center;
  list-style: disc;
}

.styled-list-dica li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 60px;
}



/*Card de perguntas*/
.card_formulario {
  width: 100%;
  max-width: 700px;
  height: 350px;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  transition: transform 0.3s ease;
  text-align: center;
  overflow: hidden;
  padding: 60px;
}
.card_formulario h1{
  font-size: 2.5rem;
}

.card_formulario:hover {
  transform: scale(1.1);
}

.card_formulario a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 2rem;
}

.card_formulario_content h3 {
  margin-top: 0;
  font-size: 1rem;
  color: #000000;
}

.card_formulario_content p {
  font-size: 1rem;
  color: #555;
  margin: 1rem 0;
}

.botao_card_formulario {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao_card_formulario:hover {
  background-color: #b9bec3;
}


/* Container principal que envolve a apresentação */
.presentation-container {
  width: 90%; /* Responsivo - ocupa 90% da largura da tela */
  max-width: 900px; /* Limite máximo de largura */
  margin: 30px auto; /* Espaço superior e inferior + centralização */
  padding: 10px; /* Espaçamento interno */
  background-color: #fff; /* Cor de fundo do container */
  border-radius: 10px; /* Bordas arredondadas */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Sombra suave para destaque */
  overflow: hidden; /* Garante que o conteúdo não ultrapasse o container */
}

/* Wrapper para o iframe (necessário para manter a proporção da apresentação) */
.canva-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Mantém a proporção 16:9 (56.25% = 9/16) */
  height: 0;
  overflow: hidden;
}

/* Estilo do iframe */
.canva-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px; /* Bordas arredondadas no iframe */
}

/*Responsividade*/

/*Responsividade telas maiores*/
@media (min-width: 1600px) {
  .banner {
    height: 600px;
  }

  .banner-dica {
    height: 600px;
  }

  .title-dica {
    font-size: 5rem;
  }

  .subtitle-dica {
    font-size: 3rem;
    width: 70%;
  }

  .text-dica {
    font-size: 1.8rem;
    width: 80%;
  }

  .styled-list-dica li {
    font-size: 1.8rem;
    list-style: disc;
  }

  .card_formulario {
    width: 80%;
    height: 500px;
    padding: 2rem;
  }

  .card_formulario > h1 {
    font-size: 3.5rem;
  }

  .card_formulario_content p {
    font-size: 1.6rem;
  }
}

@media (min-width: 1500px) {
  

}
/* Responsividade Tablet */
@media(max-width: 770px) {
  .banner{
   z-index: -100;
  }

  .subtitle-dica {
    font-size: 2.2rem;
    width: 100%;
  }
  .text-dica {
    font-size: 1.5rem;
  }
  .styled-list-dica li{
    font-size: 1.5rem;
    list-style: disc
  }
  .styled-list-dica li::before{
    display: none;
  }
  .card_formulario {
    width: 90%;
    height: 400px;
    padding: 1rem;
    
  }
  .card_formulario > h1{
    font-size: 2.8rem;
  }
  .card_formulario_content p{
    font-size: 1.5rem;
  }
  .botao_card_formulario{
    padding: 1.8rem 4rem;
    font-size: 1.5rem;
  }
  .title-dica {
    display: block;
    font-size: 4rem;
    color: black;
  }
}

/* Responsividade celular */
@media(max-width: 460px) {
  .banner{
    display: none;
  }
  .banner-dica {
    display: none;
  }

  .title-dica {
    display: block;
    font-size: 2rem;
    color: rgb(255, 255, 255);
  }

  .subtitle-dica {
    font-size: 1.2rem;
    width: 100%;
    margin-top: 50px;
  }

  .text-dica {
    font-size: 1rem;
  }
  .styled-list-dica li{
    font-size: 1rem;
    list-style: disc;
  }
  .styled-list-dica li::before{
    display: none;
  }
   .card_formulario {
    height: auto;
    width: 90%;
    padding: 0px;
  }

  .card_formulario h1 {
    font-size: 2rem;
    word-wrap: break-word;
  }

  .card_formulario_content h3 {
    font-size: 1.2rem;
  }

  .card_formulario_content p {
    font-size: 0.9rem;
  }

  .botao_card_formulario {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}
